home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 39 / Issue 39.iso / pc / PCSoftware / RoboHelp / DISK1 / DATA.1 / ShowWebHelp.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-06-27  |  756 b   |  21 lines

  1. #ifndef SHOWWEBHELP_H
  2. #define SHOWWEBHELP_H
  3.  
  4. /*const int WOF_LOCATION    = 0x1;
  5. const int WOF_MENUBAR        = 0x2;
  6. const int WOF_RESIZABLE        = 0x4;
  7. const int WOF_TOOLBAR        = 0x8;
  8. const int WOF_STATUS        = 0x10;
  9. const int WOF_SCROLLBARS    = 0x20;
  10.  
  11. const int SWH_TOP            = 0;
  12. const int SWH_LEFT            = 0;
  13. const int SWH_HEIGHT        = 400;
  14. const int SWH_WIDTH            = 400; */
  15.  
  16. int    ShowWebHelp(const char* pszCshFileName, int nTopicNumber, const char* pszTopicID, const char *pszRemoteURL);
  17. // those option do not support for C++ code now. 
  18. // the reason is we can not eliminate the "Close window messageBox"
  19. //        int nWindowOption = WOF_RESIZABLE|WOF_SCROLLBARS , 
  20. //        int nTop = SWH_TOP, int nLeft = SWH_LEFT, int nHeight = SWH_HEIGHT, int nWidth = SWH_WIDTH);
  21. #endif